home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE08 / DATADICT / DDDICT.DPR < prev    next >
Encoding:
Text File  |  1996-02-12  |  1003 b   |  33 lines

  1. program Dddict;
  2.  
  3. uses
  4.   Forms,
  5.   Mainmenu in 'MAINMENU.PAS' {Main},
  6.   Gentable in 'GENTABLE.PAS' {buildtableform},
  7.   Createdd in 'CREATEDD.PAS' {CreateDDForm},
  8.   Runinfo in 'RUNINFO.PAS' {RunInfoForm},
  9.   About in 'ABOUT.PAS' {AboutBox},
  10.   Browsedd in 'BROWSEDD.PAS' {BrowseDDForm},
  11.   Editmemo in 'EDITMEMO.PAS' {EdMemoDlg},
  12.   Ddeddlg in 'DDEDDLG.PAS' {DDMultPageDlg},
  13.   Dbutils in 'DBUTILS.PAS',
  14.   Importdd in 'IMPORTDD.PAS',
  15.   Dirdlg in 'DIRDLG.PAS' {TgtDirDlg},
  16.   mystrng in 'MYSTRNG.PAS',
  17.   Utils in 'UTILS.PAS';
  18.  
  19.  
  20. {$R *.RES}
  21.  
  22. begin
  23.   Application.Title := 'Data Dictionary Manager';
  24.   Application.CreateForm(TMain, Main);
  25.   Application.CreateForm(TBrowseDDForm, BrowseDDForm);
  26.   Application.CreateForm(Tbuildtableform, buildtableform);
  27.   Application.CreateForm(TCreateDDForm, CreateDDForm);
  28.   Application.CreateForm(TAboutBox, AboutBox);
  29.   Application.CreateForm(TEdMemoDlg, EdMemoDlg);
  30.   Application.CreateForm(TDDMultPageDlg, DDMultPageDlg);
  31.   Application.Run;
  32. end.
  33.